home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / h / GXFONT < prev    next >
Text File  |  1991-10-27  |  3KB  |  103 lines

  1. /* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gxfont.h */
  21. /* Internal font definition for Ghostscript library */
  22. /* Requires gsmatrix.h, gxdevice.h */
  23. #include "gsfont.h"
  24.  
  25. /* A font object as seen by clients. */
  26. /* See the PostScript Language Reference Manual for details. */
  27.  
  28. #ifdef ARC
  29. #ifndef GS_SHOW_ENUM_S_DEFINED
  30. struct gs_show_enum_s;
  31. #endif
  32. #endif
  33.  
  34. typedef int (*gs_proc_build_char)
  35.      (P5(struct gs_show_enum_s *, struct gs_state_s *, struct gs_font_s *,
  36.      int /* char code */, char * /* build_char_data */));
  37.  
  38. int gs_no_build_char_proc
  39.      (P5(struct gs_show_enum_s *, struct gs_state_s *, struct gs_font_s *,
  40.      int, char *));
  41.  
  42. /* Define the known font types. */
  43. /* These numbers must be the same as the values of FontType */
  44. /* in font dictionaries. */
  45. typedef enum {
  46.     ft_composite = 0,
  47.     ft_encrypted = 1,
  48.     ft_user_defined = 3
  49. } font_type;
  50.  
  51. /* This is the type-specific information for a type 0 (composite) gs_font. */
  52. typedef struct gs_type0_data_s gs_type0_data;
  53. struct gs_type0_data_s {
  54.     int FMapType;
  55.     byte EscChar, ShiftIn, ShiftOut;
  56.     byte *SubsVector;
  57.       uint subs_size;        /* bytes per entry */
  58.       int subs_width;        /* # of entries */
  59.     int *Encoding;
  60.       uint encoding_size;
  61.     gs_font **FDepVector;
  62.       uint fdep_size;
  63. };
  64.  
  65. /* This is the type-specific information for a type 1 (encrypted) gs_font. */
  66. #ifdef ARC
  67. #define GS_TYPE1_DATA_S_DEFINED
  68. #endif
  69. typedef struct gs_type1_data_s gs_type1_data;
  70. struct gs_type1_data_s {
  71.     int PaintType;            /* PaintType */
  72.     int (*subr_proc)(P3(gs_type1_data *pdata,
  73.                 int index, byte **pcharstring));
  74.     int (*pop_proc)(P2(gs_type1_data *, fixed *));
  75.     char *proc_data;        /* data for subr_proc */
  76.     int lenIV;            /* # of leading garbage bytes */
  77. };
  78.  
  79. /* Even though it costs a little extra space, it's more convenient to */
  80. /* include all the necessary information for >>all<< known font types */
  81. /* (user-defined, encrypted, and composite) in the font structure. */
  82. struct gs_font_s {
  83.     gs_font *next, *prev;        /* chain for scaled font cache */
  84.     gs_font *base;            /* original (unscaled) base font */
  85.     gs_font_dir *dir;        /* directory where registered */
  86.     char *client_data;        /* additional client data */
  87.     gs_matrix FontMatrix;
  88.     font_type FontType;
  89.     gs_proc_build_char build_char_proc;    /* BuildChar */
  90.     char *build_char_data;        /* private data for BuildChar */
  91.     union _d {
  92.         /* Composite (type 0) fonts */
  93.         gs_type0_data type0_data;
  94.         /* Base (non-type 0) fonts */
  95.         struct _b {
  96.             gs_rect FontBBox;
  97.             long UniqueID;
  98.             /* Type 1 data */
  99.             gs_type1_data type1_data;
  100.         } base;
  101.     } data;
  102. };
  103.